From bb756b195a7bc6b4cf3286d891a38459dac23cde Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Sun, 6 Apr 2025 09:11:06 +0200 Subject: [PATCH] ; Fix typo in Tramp * lisp/net/tramp-cache.el (with-tramp-saved-connection-property): Fix typo. --- lisp/net/tramp-cache.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/net/tramp-cache.el b/lisp/net/tramp-cache.el index 71b8cfa67bf..87e7feae188 100644 --- a/lisp/net/tramp-cache.el +++ b/lisp/net/tramp-cache.el @@ -473,10 +473,10 @@ used to cache connection properties of the local machine." (hash (tramp-get-hash-table key)) (cached (and (hash-table-p hash) (gethash ,property hash tramp-cache-undefined)))) - (tramp-message key 7 "Saved %s %s" property cached) + (tramp-message key 7 "Saved %s %s" ,property cached) (unwind-protect (progn ,@body) ;; Reset PROPERTY. Recompute hash, it could have been flushed. - (tramp-message key 7 "Restored %s %s" property cached) + (tramp-message key 7 "Restored %s %s" ,property cached) (setq hash (tramp-get-hash-table key)) (if (not (eq cached tramp-cache-undefined)) (puthash ,property cached hash) -- 2.30.2